home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / SecalDemo / Inc / dos / datetime.inc next >
Encoding:
Text File  |  1997-06-11  |  388 b   |  25 lines

  1. include "inc/dos/dos.inc";
  2.  
  3. struct DateTime is
  4.   dat_Stamp:DateStamp;
  5.   dat_Format:ubyte;
  6.   dat_Flags:ubyte;
  7.   dat_StrDay:ulong;
  8.   dat_StrDate:ulong;
  9.   dat_StrTime:ulong;
  10. ;
  11.  
  12. def LEN_DATSTRING = 16;
  13.  
  14. def DTB_SUBST = 0;
  15. def DTF_SUBST = 1;
  16. def DTB_FUTURE = 1;
  17. def DTF_FUTURE = 2;
  18.  
  19. def FORMAT_DOS = 0;
  20. def FORMAT_INT = 1;
  21. def FORMAT_USA = 2;
  22. def FORMAT_CDN = 3;
  23. def FORMAT_MAX = FORMAT_CDN;
  24.  
  25.